home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000176_news@newsmaster….columbia.edu _Sat Aug 16 10:53:12 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA05153
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 16 Aug 1997 10:53:12 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA11851
  7.     for kermit.misc@watsun; Sat, 16 Aug 1997 10:53:11 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: installing kermit
  12. Date: 16 Aug 1997 14:53:10 GMT
  13. Organization: Columbia University
  14. Lines: 61
  15. Message-ID: <5t4esm$1hk$1@apakabar.cc.columbia.edu>
  16. References: <Pine.GSO.3.95.970816011948.10089B-100000@u3.farm.idt.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7482
  19.  
  20. In article <Pine.GSO.3.95.970816011948.10089B-100000@u3.farm.idt.net>,
  21. Tom Malloy  <tmalloy@idt.net> wrote:
  22. : My provider does not have, or plan to install, kermit.
  23. :
  24. Why not?  Aren't business people supposed to try to please their customers?
  25. If not, how do they stay in business?
  26.  
  27. : Which files do need to install Ckermit on a bsdi system?  Do I need to
  28. : compile it?
  29. :
  30. No, we have a prebuilt binary for BSDI 2.1.  So you don't even have to
  31. depend on your provider to provide a C compiler.
  32.  
  33. The bare minimum is just the binary:
  34.  
  35.   ftp://kermit.columbia.edu/kermit/bin/ckuker.bsdi-2.1
  36.  
  37. The accompanying text files (initialization files, installation instructions,
  38. hints and tips, etc) are in:
  39.  
  40.   ftp://kermit.columbia.edu/kermit/archives/cku192txt.zip (or tar.Z or tar.gz)
  41.  
  42. Of course you can compile it if you want to.  The source code is in:
  43.  
  44.   ftp://kermit.columbia.edu/kermit/archives/cku192src.tar.{gz,Z}
  45.  
  46. Uncompress, untar, "make bsdi".
  47.  
  48. : Also is it possible to log the usage of kermit so that I can show the sys
  49. : admin that it is being used and thereby prompt him to put it in system
  50. : space and not my own.
  51. Kermit can produce all sorts of logs, but probably not the kind you are
  52. thinking about (some kind of centralized log, like wtmp?).  For example, it
  53. can keep a log of all the files it transfers.  But it's not automatic -- the
  54. user has to request it with the "log transactions <filename> append"
  55. command, and it's a separate log for each user, and it's also a new file
  56. unless the "append" keyword is included.  Even then, the results are
  57. unpredictable if more than one user has the same logfile open at once.
  58.  
  59. And then how would we ensure that logging was always done?  You could put
  60. this command into the initialization file, but the initialization file is in
  61. the user's home directory, so you'd need to get every user to cooperate.
  62. And where would you put the log, and against whom would it be charged?
  63.  
  64. Or you could have a system-wide initialization file, but then you'd need to
  65. the sysadmin to install for you and that's the problem you're trying to
  66. solve in the first place.
  67.  
  68. I'd be interested to know why the provider refuses to install it in the
  69. first place.  Exactly what kind of misapprehension causes this attitude?
  70. Maybe they are just trying to discourage use of shell accounts?  What other
  71. applications do they refuse to install?
  72.  
  73. In the meantime, I'll think a little more about the logging issue.  But
  74. note: even if Kermit did create wtmp entries, you'd probably need the
  75. sysadmin to set this up for you, since at the very least, the sysadmin has
  76. to manage the log.  And finally, exactly what should be recorded in a
  77. central log?  This might raise some serious privacy issues...
  78.  
  79. - Frank